home *** CD-ROM | disk | FTP | other *** search
/ In-To-The-Net / In-to-the-net (1996)(Weird Science)(Disc 1 of 2)[Amiga-PC].iso / airmail33 / install.rexx < prev    next >
OS/2 REXX Batch file  |  1996-06-22  |  636b  |  27 lines

  1. /* simple ARexx install script
  2.  
  3. -- This script will copy the display program to the c: directory for viewing
  4.     AirMail screen shots.  If you already have newer versions then ignore the
  5.    install script
  6. --
  7. */
  8.  
  9. address command
  10. say 'Creating directory ENVARC:AirMail'
  11. 'makedir ENVARC:AirMail'
  12. say
  13. say 'Creating directory MUI:Images/AirMail'
  14. 'makedir MUI:Images/AirMail'
  15. say
  16. say 'Copying Air Mail icons to MUI:Images/AirMail'
  17. say 'See Docs on how to use your own icons.'
  18. 'copy libs/#?.iff MUI:Images/AirMail'
  19. say
  20. say 'Copy display v38.9 to C: (y/n)'
  21. pull ans
  22. if ans = 'Y' then
  23.  'copy libs/display c:'
  24. endif
  25.  
  26. say 'Installation Complete.'
  27.